Newest Questions
24,250,121 questions
0
votes
0
answers
10
views
Apexcharts Dumbbell Chart with start-end points?
Is it possible to get the output in the image with react apexcharts?
https://www.apexcharts.com/react-chart-demos/column-charts/dumbbell-chart/
series: [
{
data: [
...
0
votes
0
answers
11
views
Is there a way to improve performance of a multi-way join?
What are the best practices for improving multi-way joins in Hive SQL, especially when dealing with large datasets, different table formats and data types?
0
votes
0
answers
8
views
Why runing laravel app which using docker/sail I got attribute version is obsolete?
I need on my home laptop to run laravel 8 app which using laravel/sail: ^1.0.1 and running it I got errors:
master@master-at-home:/mnt/_work_sdb8/wwwroot/lar/_MyApps/app$ ./vendor/bin/sail up
Docker ...
0
votes
1
answer
15
views
SQL Server Table Scan When Using SELECT *
I am working with SQL Server 2019 and have a TVF that retrieves products based on a list of categories. However, I noticed that when I use SELECT *, the query results in a table scan, whereas ...
-1
votes
0
answers
10
views
Holding state in a service class in a SwiftUI app
I have a UpNextManager view model and a service class called UpNextService which contains many methods to read up next items from disk, write them to disk and much more. The service class is then ...
0
votes
0
answers
3
views
gRPC: getting CANCELED status after exceeding message size
I am playing with the gRPC HelloWorld (gRPC 1.66) example and message sizes. For unary streams, I am getting correct response RESOURCE_EXHAUSTED for too big server responses.
However, for
rpc ...
0
votes
0
answers
5
views
Issue with Heart Rate Graph from Apple Watch in iOS App
Issue with Heart Rate Graph from Apple Watch in iOS App
Hello Community!
I hope everyone is doing well. I'm developing an iOS app that includes a feature to display a graph of the heart rate recorded ...
1
vote
0
answers
4
views
How axon works with kafka for event processor?
I would like to know if I need to do some message persistence configuration in Kafka, in case I want to do the replay at some point, or if when I trigger the replay it pulls it from the EventStore and ...
0
votes
0
answers
4
views
Why does my Azure-deployed web app throw a 'resource not found' error, while it works fine on localhost?
I have 2 apps. For this sake, lets call it App1, and App2.
Both are Blazor server projects. From App1, we pass through user identity data, to authenticate with in App2.
The endpoint in App2 is a ...
0
votes
0
answers
3
views
How to get language cookies in .NET Core 8 Blazor Server App?
I can't get the language cookies in Blazor Server App. I have client and server on the same host, but cookies are not sent with the request. And I get the default language here, although cookies are ...
0
votes
0
answers
4
views
Gradle multi project doesnt implement projects
i have this spring boot project structure:
root
--ui
--track
settings.gradle
build.gradle
in root/settings.gradle:
rootProject.name = 'root'
include 'track', 'ui'
I want to use ui in track:
root/...
0
votes
0
answers
8
views
Matomo: Tracking via images - where do I see results?
I'm trying to use Matomo’s Image Tracking feature in email instead of the usual JavaScript tracking. I generated the tracking pixel code from the Matomo admin interface and embedded it into my HTML. ...
0
votes
0
answers
9
views
Vite not create source map css
I am new on vite, I need to generate sourcemap css files.
For what I have read on vite documentation, vite it self is able to generate sourcemap files, not needing gulp task or whatever.
I have my ...
1
vote
0
answers
10
views
Issue with IPv6 Connectivity on VPS – "Could Not Resolve Host" Error [closed]
I am currently trying to configure multiple IPv6 addresses on my VPS with Ubuntu Server (The VPS has a default IPV4 Adress) so that I can use multiple proxy IP addresses.
However, when I run a basic ...
0
votes
1
answer
10
views
Svelte onMount method does't wait for await
I have Firebase app with Svelte 5. Svelte is '5.17.5', @sveltejs/kit is '2.15.3', firebase is '11.2.0', vite is '6.0.7'. Here is method, it doesn't stop on await/async. What am I missing?
Here is ...
0
votes
0
answers
6
views
Symfony UX Autocomplete - does not add new options after standard ajax call
I have two autocomplete fields.
class SignalementFormType extends AbstractType {
private EntityManagerInterface $em;
public function __construct(EntityManagerInterface $entityManager) {
$this-&...
0
votes
0
answers
11
views
jq: Assigning incrementing numbers in order-preserving way
Using jq, I want to assign an incrementing number num to each element in the order they appear in the input, but keep the same number for elements that share a ref value with other elements.
So ...
0
votes
0
answers
5
views
Failed to create ads with linkedin API - CREATIVE_CREATE_FORBIDDEN
Having trouble creating an ad with linkedin API (v2025-02)
I'm doing the following:
BASE_API_URL = "https://api.linkedin.com/rest"
headers.Add("LinkedIn-Version", "202502&...
0
votes
0
answers
5
views
Google Sheet (GSheet) formula to import data from multiple tabs
I am trying to pull data from several tabs to create a single, concatenated list of all results.
For example, I have dozens / hundreds of tabs all called "Tab YYY" with YYY being an integer, ...
0
votes
1
answer
6
views
Cannot trigger on click in div in MudBlazor
I have created
Selectable.razor:
@inherits ComponentBase
<div class="@getClass()" @onclick="() => SetSelected()"></div>
and Selectable.razor.cs:
using Microsoft....
0
votes
0
answers
9
views
ERROR [22008] [Snowflake][Support] (40520) Datetime field overflow resulting from invalid datetime with .NET OdbcCommand
I have the following table in Snowflake.
But when I try to insert a .NET DateTime object which has a non zero millisecond component I am getting:
System.Data.Odbc.OdbcException : ERROR [22008] [...
0
votes
0
answers
7
views
How to build a yocto image having multiple python versions?
I am new to building images using Yocto. I am working with an STM32MPU157F, which comes with OpenSTLinux by default. The default image includes Python 3.12.4, but I also need to have Python 3.11.5 ...
0
votes
0
answers
6
views
ADF dynamic row starting position
We have an excel file which we need to convert to CSV using ADF.
The excel file has data table starting from row 5.
However, there are instances where "Time" (on row 3) is missing and the ...
0
votes
1
answer
13
views
Is there a callable for generating ids with `pytest.fixture(param=...)` the same way it would be generated with `pytest.mark.parametrize()`?
I'm using parametrized fixtures but I don't find the way ids are generated practical.
I'd like to fall back on the way it's generated when using pytest.mark.parametrize.
I've seen that it's possible ...
0
votes
0
answers
5
views
libloading and async dynamic lib function
I created a dynamic lib from rust.
I woul like to import it into another app. Sp I use libloading
I do
fn call_dynamic() -> Result<u32, Box<dyn std::error::Error>> {
unsafe {
...
0
votes
0
answers
10
views
Android retrofit and postman showing different result for same url and input
Retrofit and postman showing different result for same url and input values.
Can any one help on this issue.
I tried to remove cache of retrofit.
tried to remove cache on api level,
tried to remove ...
0
votes
0
answers
20
views
How can I extract columns and tables used given an SQL query?
I have been searching for a while and I have not found a good enough method to extract the tables and columns. My final intention is to have all the columns used in format table.column. I use python.
...
1
vote
0
answers
13
views
Selenium and ChromeDriver Setup Issue in Google Colab: Compatibility Problems with undetected-chromedriver (and now google-colab-selenium)
I am a social scientist with very limited background on computational methods and Python (I am mostly self taught). This is my first time posting here, so please bear with me if I misuse any technical ...
0
votes
0
answers
9
views
Passing reference of an array of widgets to a function affects the values of the widgets
My code:
def append_row(selected_option, dropdown_quarter, period_texts, avg_rate, result, table_references, arr):
edit_data_dict = {}
subcategory = "blah blah"
key = f"{...
0
votes
0
answers
12
views
Jacoco Report Showing 0% Coverage Despite All Tests Passing - How to Ensure Minimum 60% Coverage?
I'm working on a Java project using Maven and I've been trying to generate a Jacoco code coverage report. However, even though all of my test cases are passing successfully, the generated Jacoco ...
0
votes
0
answers
11
views
Issues using DHARMa plots when including an offet
I'm fitting a model using GLMMadaptive that takes the following form:
library(GLMMadaptive)
library(DHARMa)
dat <- structure(list(subjectId = c("1", "1", "2", "2&...
0
votes
0
answers
5
views
Change orientation of table Header using xlsxwriter
I am exporting a quite large table (40rows including header; 69 columns)
The mayority of the columns are just numbers so i Set the with to, e.g, 5.
This results in unreadable columns headers. Now I ...
0
votes
0
answers
9
views
ADF decimal column output
We have an ADF pipeline to transform an Excel file to CSV.
The Excel file has numeric column containing decimal data.
Example:
Data
15000000
23219284.250000
We tried using double data type for ...
0
votes
0
answers
8
views
Safari can't download this file when using PHP-PKPass
I've generated a pkpass with the following function:
<?php
$customer_id = $_GET['customer_id'] ?? "";
$pass = new LoyaltyCard($customer_id);
header('Content-Type: application/vnd.apple....
0
votes
1
answer
14
views
How to align two texts, one on the left margin and one on the right margin in Jetpack Compose?
I have two texts and I want the first one to be placed at the beginning of the left margin and the other one stuck to the right margin.
I'm trying this:
Row {
Text(
modifier = Modifier....
-2
votes
0
answers
14
views
What is the $1 for when indexing a domain?
Google keeps complaining about a failed index (giving a 404, not found error) for https://XXX.XXX/**$1**.
But I have no clue what $1 is referring to? It always used to pass, and I don't think I ...
0
votes
0
answers
15
views
Access Violation Error in WaveInProc Callback with pThis Pointer in C++
I'm working on a microphone manager in C++ that processes audio input using the Windows Multimedia API. However, I'm encountering an access violation error when trying to access member variables of ...
0
votes
0
answers
8
views
Convert API from .raml to .yaml
I'm trying to convert, as title, an API from .raml to .yaml, using python.
I have almost done everything but endpoints. When i have something like this example:
/supply:
/update:
post:
.......
0
votes
0
answers
2
views
Modify Alexa skill's default client AWS ID to other AWS ID
Please if someone knows, I need an answer as soon as possible,
I want to use my own AWS account (1XXXXXXXXXXX) with my Alexa skill instead of the default account (7XXXXXXXXXXX):
I created a skill in ...
0
votes
3
answers
16
views
My app keeps stopping even though the ui has not started
OK so I manage to finally build an app to be only met with an app crash
Can you guys like help me to fix this issue like it's been bugging me for weeks and I still can't fix this issue
So basically to ...
-1
votes
0
answers
9
views
Using nginx for gitlab ee
I'm trying to run both GitLab and Jenkins on the same Ubuntu 22 server using Nginx as a reverse proxy. While both services are accessible via their respective domains, I'm encountering a 403 Forbidden ...
0
votes
0
answers
7
views
TypeScript errors when using shared package from pnpm workspace in Google Cloud Functions
Problem
I have a pnpm workspace monorepo with the following structure:
A shared tsconfig package
A shared database package
A NextJS app
A new google cloud function app
While the shared database ...
0
votes
0
answers
9
views
Authentication in Blazor pages is not persisting. Why?
I've implemented a user authorization in Blazor server using both local DB and Microsoft Azure.
When a user authorizes using Microsoft Azure the authorization is persistent when changing Blazor pages....
0
votes
0
answers
8
views
Using Key Vault in App Service Deployment Slot Service Connector
I have spent the past few hours trying to work this out. Please help me understand what I'm doing wrong.
I have setup a new app with deployment slots. In the production/main deployment slot, I am able ...
0
votes
1
answer
22
views
SQL Query To Fill in "missing rows" in a view
I have a table in a SQL database where rows are not stored if all values are default.
Currently this is in Sybase but it also needs to work in Postgres in the near future.
i.e:
Parties
Key
Other data
...
0
votes
0
answers
11
views
Not able to deploy the SSIS package after upgrading SQL Server 2019 to SQL Server 2022
During the upgrade process from SQL Server 2019 to 2022, everything is working fine except that the SSIS packages are failing to execute.
I attempted to upgrade and deploy the SSIS project, but the ...
0
votes
0
answers
9
views
Flutter VPN App Works Locally But Fails After Google Play Release
I've developed a VPN app using Flutter with the flutter_v2ray package. The app connects successfully and works properly when:
Installed directly from my development environment
Built and installed as ...
1
vote
0
answers
9
views
Compiling Wasm Programs for esp32 wamr
I want to be able to compile a c program to wasm in a way, that the espressif wasm micro runtime(espressif) will accept it.
I have tried following guide in the esp-wdf github project (github) which ...
0
votes
1
answer
17
views
How do conditional expressions group from right to left?
I checked python operator precedence
Operators in the same box group left to right (except for exponentiation and conditional expressions, which group from right to left).
** Exponentiation [5]
if – ...
0
votes
1
answer
20
views
Does git storages information about cloned repositories?
Stupid question, but i wondering. If i've cloned someone repository via git clone and then after some time i deleted it locally, does git storages information about what i've cloned previously ...